home *** CD-ROM | disk | FTP | other *** search
/ EuroCD 3 / EuroCD 3.iso / Programming / SecalDemo / Inc / intuition / pointerclass.inc < prev    next >
Text File  |  1998-06-24  |  789b  |  29 lines

  1. include "inc/exec/types.inc";
  2. include "inc/intuition/intuition.inc";
  3. include "inc/utility/tagitem.inc";
  4.  
  5. def POINTERA_Dummy = (TAG_USER+$39000);
  6.  
  7. def POINTERA_BitMap = (POINTERA_Dummy+$01);
  8. def POINTERA_XOffset = (POINTERA_Dummy+$02);
  9. def POINTERA_YOffset = (POINTERA_Dummy+$03);
  10. def POINTERA_WordWidth = (POINTERA_Dummy+$04);
  11. def POINTERA_XResolution = (POINTERA_Dummy+$05);
  12. def POINTERA_YResolution = (POINTERA_Dummy+$06);
  13.  
  14. def POINTERXRESN_DEFAULT = 0;
  15. def POINTERXRESN_140NS = 1;
  16. def POINTERXRESN_70NS = 2;
  17. def POINTERXRESN_35NS = 3;
  18.  
  19. def POINTERXRESN_SCREENRES = 4;
  20. def POINTERXRESN_LORES = 5;
  21. def POINTERXRESN_HIRES = 6;
  22.  
  23. def POINTERYRESN_DEFAULT = 0;
  24. def POINTERYRESN_HIGH = 2;
  25. def POINTERYRESN_HIGHASPECT = 3;
  26. def POINTERYRESN_SCREENRES = 4;
  27. def POINTERYRESN_SCREENRESASPECT = 5;
  28.  
  29.